Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
double-ended-queue
Advanced tools
The double-ended-queue npm package provides a highly optimized implementation of a double-ended queue (deque), which allows for efficient addition and removal of elements from both ends of the queue. This data structure is useful for various applications such as task scheduling, caching, and more.
Add elements to the front
This feature allows you to add elements to the front of the deque. The `unshift` method is used to add elements to the front.
const Deque = require('double-ended-queue');
const deque = new Deque();
deque.unshift(1);
deque.unshift(2);
console.log(deque.toArray()); // Output: [2, 1]
Add elements to the back
This feature allows you to add elements to the back of the deque. The `push` method is used to add elements to the back.
const Deque = require('double-ended-queue');
const deque = new Deque();
deque.push(1);
deque.push(2);
console.log(deque.toArray()); // Output: [1, 2]
Remove elements from the front
This feature allows you to remove elements from the front of the deque. The `shift` method is used to remove elements from the front.
const Deque = require('double-ended-queue');
const deque = new Deque();
deque.push(1);
deque.push(2);
console.log(deque.shift()); // Output: 1
console.log(deque.toArray()); // Output: [2]
Remove elements from the back
This feature allows you to remove elements from the back of the deque. The `pop` method is used to remove elements from the back.
const Deque = require('double-ended-queue');
const deque = new Deque();
deque.push(1);
deque.push(2);
console.log(deque.pop()); // Output: 2
console.log(deque.toArray()); // Output: [1]
Access elements by index
This feature allows you to access elements by their index in the deque. The `get` method is used to retrieve elements by index.
const Deque = require('double-ended-queue');
const deque = new Deque();
deque.push(1);
deque.push(2);
console.log(deque.get(0)); // Output: 1
console.log(deque.get(1)); // Output: 2
Denque is a fast and lightweight double-ended queue implementation. It offers similar functionality to double-ended-queue, including efficient addition and removal of elements from both ends. Denque is known for its performance and is often used in high-performance applications.
Deque is another implementation of a double-ended queue. It provides similar features to double-ended-queue, such as adding and removing elements from both ends. Deque is simple to use and integrates well with other JavaScript libraries.
https://code.google.com/p/v8/issues/detail?id=3059
#Introduction
Extremely fast double-ended queue implementation. Double-ended queue can also be used as a:
The implementation is GC and CPU cache friendly circular buffer. It will run circles around any "linked list" implementation.
Every queue operation is done in constant O(1)
- including random access from .get()
.
#Topics
#Quick start
npm install double-ended-queue
var Deque = require("double-ended-queue");
var deque = new Deque([1,2,3,4]);
deque.shift(); //1
deque.pop(); //4
#Why not use an Array?
Arrays take linear O(N)
time to do shift
and unshift
operations. That means in theory that an array with 1000 items is 1000x slower to do those operations than a deque with 1000 items. 10000x slower with 10000 items and so on.
V8 implements a trick for small arrays where these operations are done in constant time, however even with this trick deque is still 4x faster.
But arrays use "native" methods, they must be faster!
In V8, there is almost no advantage for a method to be a built-in. In fact many times built-ins are at a severe disadvantage of having to implement far more complex semantics than is actually needed in practice. For example, sparse array handling punishes almost every built-in array method even though nobody uses sparse arrays as is evidenced by the popularity of the underscore library which doesn't handle sparse arrays in the same way across different browsers.
#Using double-ended queue as a normal queue
Queue is a more commonly needed data structure however a separate implementation does not provide any advantage in terms of performance. Aliases are provided specifically for the queue use-case. You may use .enqueue(items...)
to enqueue item(s) and .dequeue()
to dequeue an item.
#API
new Deque()
new Deque(Array items)
new Deque(int capacity)
push(dynamic items...)
unshift(dynamic items...)
pop()
shift()
toArray()
peekBack()
peekFront()
get(int index)
isEmpty()
clear()
#####new Deque()
-> Deque
Creates an empty double-ended queue with initial capacity of 16. If you know the optimal size before-hand, use [].
var deque = new Deque();
deque.push(1, 2, 3);
deque.shift(); //1
deque.pop(); //3
#####new Deque(Array items)
-> Deque
Creates a double-ended queue from the items
.
var deque = new Deque([1,2,3,4]);
deque.shift(); //1
deque.pop(); //4
#####new Deque(int capacity)
-> Deque
Creates an empty double-ended queue with the given capacity
. Capacity
should be the maximum amount of items the queue will hold at a given time.
The reason to give an initial capacity is to avoid potentially expensive resizing operations at runtime.
var deque = new Deque(100);
deque.push(1, 2, 3);
deque.shift(); //1
deque.pop(); //3
#####push(dynamic items...)
-> int
Push items to the back of this queue. Returns the amount of items currently in the queue after the operation.
var deque = new Deque();
deque.push(1);
deque.pop(); //1
deque.push(1, 2, 3);
deque.shift(); //1
deque.shift(); //2
deque.shift(); //3
Aliases: enqueue
, insertBack
#####unshift(dynamic items...)
-> int
Unshift items to the front of this queue. Returns the amount of items currently in the queue after the operation.
var deque = new Deque([2,3]);
deque.unshift(1);
deque.toString(); //"1,2,3"
deque.unshift(-2, -1, 0);
deque.toString(); //"-2,-1,0,1,2,3"
Aliases: insertFront
#####pop()
-> dynamic
Pop off the item at the back of this queue.
Note: The item will be removed from the queue. If you simply want to see what's at the back of the queue use peekBack()
or .get(-1)
.
If the queue is empty, undefined
is returned. If you need to differentiate between undefined
values in the queue and pop()
return value -
check the queue .length
before popping.
var deque = new Deque([1,2,3]);
deque.pop(); //3
deque.pop(); //2
deque.pop(); //1
deque.pop(); //undefined
Aliases: removeBack
#####shift()
-> dynamic
Shifts off the item at the front of this queue.
Note: The item will be removed from the queue. If you simply want to see what's at the front of the queue use peekFront()
or .get(0)
.
If the queue is empty, undefined
is returned. If you need to differentiate between undefined
values in the queue and shift()
return value -
check the queue .length
before shifting.
var deque = new Deque([1,2,3]);
deque.shift(); //1
deque.shift(); //2
deque.shift(); //3
deque.shift(); //undefined
Aliases: removeFront
, dequeue
#####toArray()
-> Array
Returns the items in the queue as an array. Starting from the item in the front of the queue and ending to the item at the back of the queue.
var deque = new Deque([1,2,3]);
deque.push(4);
deque.unshift(0);
deque.toArray(); //[0,1,2,3,4]
Aliases: toJSON
#####peekBack()
-> dynamic
Returns the item that is at the back of this queue without removing it.
If the queue is empty, undefined
is returned.
var deque = new Deque([1,2,3]);
deque.push(4);
deque.peekBack(); //4
#####peekFront()
-> dynamic
Returns the item that is at the front of this queue without removing it.
If the queue is empty, undefined
is returned.
var deque = new Deque([1,2,3]);
deque.push(4);
deque.peekFront(); //1
#####get(int index)
-> dynamic
Returns the item that is at the given index
of this queue without removing it.
The index is zero-based, so .get(0)
will return the item that is at the front, .get(1)
will return
the item that comes after and so on.
The index can be negative to read items at the back of the queue. .get(-1)
returns the item that is at the back of the queue,
.get(-2)
will return the item that comes before and so on.
Returns undefined
if index
is not a valid index into the queue.
var deque = new Deque([1,2,3]);
deque.get(0); //1
deque.get(1); //2
deque.get(2); //3
deque.get(-1); //3
deque.get(-2); //2
deque.get(-3); //1
Note: Even though indexed accessor (e.g. queue[0]
) could appear to return a correct value sometimes, this is completely unreliable. The numeric slots
of the deque object are internally used as an optimization and have no meaningful order or meaning to outside. Always use .get()
.
Note: The implementation has O(1) random access using .get()
.
#####isEmpty()
-> boolean
Return true
if this queue is empty, false
otherwise.
var deque = new Deque();
deque.isEmpty(); //true
deque.push(1);
deque.isEmpty(); //false
#####clear()
-> void
Remove all items from this queue. Does not change the queue's capacity.
var deque = new Deque([1,2,3]);
deque.toString(); //"1,2,3"
deque.clear();
deque.toString(); //""
#Performance
FAQs
Extremely fast double-ended queue implementation
The npm package double-ended-queue receives a total of 406,851 weekly downloads. As such, double-ended-queue popularity was classified as popular.
We found that double-ended-queue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.